home *** CD-ROM | disk | FTP | other *** search
/ Aminet 44 / Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso / Aminet / comm / www / AWebcolor2CED.lha / Hex2CED.awebrx < prev   
Text File  |  2001-06-16  |  369b  |  19 lines

  1. /* Hex2CED.awebrx   © Brian Scott  $VER1.00 2001*/
  2.  
  3. /*
  4.  The arg past to this script comes when a link is selected in color2CED.html.
  5.  Either the color name or the 6 character hex color code used in html.
  6.  
  7.  Example output at cursor position..
  8.   #6A5ACD
  9.   or
  10.   slateblue
  11.  
  12.  */
  13. OPTIONS RESULTS
  14. parse arg hx
  15. ADDRESS 'rexx_ced'
  16. 'text' translate(hx,'#','_')
  17. 'CEDTOFRONT'
  18. EXIT
  19.